home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_MosaicGlass_Factory_D < prev    next >
Encoding:
Text File  |  2003-04-22  |  822 b   |  31 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for MosaicGlass effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_MosaicGlass():
  14.     return {
  15.         'NumRows': 50,
  16.         'GroutWidth': 2,
  17.         'NumColumns': 50,
  18.         'GlassCurvature': 50,
  19.         'GeneralSettings': {
  20.             'AutoActionMode': 0,
  21.             'ExecutionMode': 0
  22.             },
  23.         'Symmetric': 1,
  24.         'EdgeCurvature': 0,
  25.         'GroutDiffusion': 50,
  26.         'FillColor': (0, 0, 0)
  27.         }
  28.  
  29. def Do(Environment):
  30.     App.Do( Environment, 'MosaicGlass', Preset_MosaicGlass())
  31.